home *** CD-ROM | disk | FTP | other *** search
/ El Mac 7 / El Mac 7.iso / De la revista / Ghostscript / files / gs_mac.ps < prev    next >
Encoding:
Text File  |  1994-05-03  |  4.1 KB  |  175 lines  |  [TEXT/gsVR]

  1. %    Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of Aladdin Ghostscript.
  3. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. % or distributor accepts any responsibility for the consequences of using it,
  5. % or for whether it serves any particular purpose or works at all, unless he
  6. % or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. % License (the "License") for full details.
  8. % Every copy of Aladdin Ghostscript must include a copy of the License,
  9. % normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. % under certain conditions described in the License.  Among other things, the
  12. % License requires that the copyright notice and this notice be preserved on
  13. % all copies.
  14.  
  15.  
  16. % executive is redefined so that .setinterpstate gets called.  This in
  17. % lets Mac GS Viewer know what state the interpreter is in so it can
  18. % display the correct menus and various dialogs and cursors.
  19.  
  20. /.interpstateinput 1 def
  21. /.interpstaterun 2 def
  22. /.interpstatepause 3 def
  23.  
  24. /executive
  25.     { { prompt
  26.         .interpstateinput .setinterpstate
  27.          { (%statementedit) (r) file } stopped
  28.          { pop pop $error /errorname get /undefinedfilename eq
  29.         { exit } if        % EOF
  30.            handleerror null        % ioerror??
  31.          }
  32.         if
  33.         .interpstaterun .setinterpstate
  34.         cvx execute
  35.       } loop
  36.     } odef
  37.  
  38. /.confirm
  39.     { pop } bind def
  40.  
  41.  
  42. % .newwindow creates a new output device for the Mac
  43.  
  44. /.newwindow    % hwres pagesize depth title visible -> -
  45.     {
  46.         mark 6 1 roll
  47.         /HWResolution 6 1 roll
  48.         /PageSize 5 1 roll
  49.         /BitsPerPixel 4 1 roll
  50.         /GSTitle 3 1 roll
  51.         /GSVisible exch
  52.         currentdevice copydevice
  53.         putdeviceprops
  54.         setdevice
  55.     } def
  56.  
  57. % .newfile creates a output file for an arbitrary device
  58.  
  59. /.newfile    % hwres pagesize outputfile -> -
  60.     {
  61.         mark 4 1 roll
  62.         /HWResolution 4 1 roll
  63.         /PageSize 3 1 roll
  64.         /OutputFile exch
  65.         currentdevice
  66.         putdeviceprops
  67.         pop
  68.     } def
  69.  
  70. % .closefile closes a file by setting the output file to be a dash
  71.  
  72. /.closefile    % --
  73.     { mark /OutputFile (-) currentdevice putdeviceprops pop } def
  74.  
  75. % .beginjob and .endjob are used to 'wrap' rendering of files
  76. % so that one file can't corrupt the VM state for another.
  77. % Both procedures assume one value on the stack which they
  78. % preserve.
  79.  
  80. % This pair does the full save and restore of the VM environment
  81. % What was on the operand and dictionary stacks before the .beginjob
  82. % will be restored after the .endjob.
  83.  
  84. /.beginjob            % |- old...stack proc -> proc
  85.     { save
  86.         5 dict dup
  87.         serverdict /.jobinfo 3 2 roll put
  88.         begin
  89.             /saveid exch def
  90.             /proc exch def
  91.               count array astore /ostack exch def
  92.               /proc load
  93.           end
  94.           serverdict /.jobinfo get
  95.           /dstack countdictstack array dictstack put
  96.     } def
  97.  
  98. /.endjob            % |- junk...stack result -> old...stack result
  99.     {
  100.         serverdict /.jobinfo known {
  101.             cleardictstack
  102.     
  103.             serverdict /.jobinfo get begin
  104.                 /result exch def
  105.                 clear ostack aload pop
  106.                 result
  107.                 saveid
  108.                 dstack
  109.             end
  110.             dup length 1 sub countdictstack exch 1 exch
  111.             { 1 index exch get begin } for
  112.             pop
  113.         restore
  114.         } if
  115.     } def
  116.  
  117. % This pair just does a save and restore.  It cleans out
  118. % the operand and dictionay stack both before and after.
  119.  
  120. % /.beginjob        % |- ... proc -> proc
  121. %     {
  122. %         count 1 roll
  123. %         count 1 sub { pop } repeat
  124. %         cleardictstack
  125. %         save
  126. %         serverdict /.jobinfo 3 2 roll put
  127. %     } def
  128. %     
  129. % /.endjob        % |- ... result -> result
  130. %     {
  131. %         count 1 roll
  132. %         count 1 sub { pop } repeat
  133. %         cleardictstack
  134. %         serverdict /.jobinfo get
  135. %         restore
  136. %     } def
  137.  
  138.  
  139. % This pair does no job saving what so ever.
  140.  
  141. % /.beginjob { } def
  142. % /.endjob { } def
  143.  
  144.  
  145. % .runjob is called from the application when you open a file
  146.  
  147. /.runjob        % proc -> -
  148.     {
  149.         .beginjob
  150.             stopped
  151.         .endjob
  152.         { stop } if
  153.     } def
  154.  
  155.  
  156. % our way of handling user interrupts
  157.  
  158. errordict begin
  159.   /interrupt {
  160.                       % do the normal errorhandler, but ignore its stop
  161.       /interrupt dup
  162.       systemdict /.errorhandler get stopped pop
  163.       .clearerror        % so stacks don't get printed
  164.       
  165.       (\nInterrupted by user.\n) print
  166.                     % tell the user
  167.     stop            % propigate the interrupt
  168.   } bind def
  169. end
  170.  
  171.     
  172.